diff options
Diffstat (limited to 'src/app/groups/[groupId]/expenses/layout.tsx')
| -rw-r--r-- | src/app/groups/[groupId]/expenses/layout.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/app/groups/[groupId]/expenses/layout.tsx b/src/app/groups/[groupId]/expenses/layout.tsx new file mode 100644 index 0000000..cd65df9 --- /dev/null +++ b/src/app/groups/[groupId]/expenses/layout.tsx @@ -0,0 +1,9 @@ +import { ReactNode } from 'react' + +export default function GroupExpensesLayout({ + children, +}: { + children: ReactNode +}) { + return <>{children}</> +} |
